home *** CD-ROM | disk | FTP | other *** search
/ CD Direkt 1996 #11 / CDD_11_96.ISO / demos / timelaps / mainmenu.dxr / 00175_Place names script.ls < prev    next >
Encoding:
Text File  |  1996-08-07  |  425 b   |  14 lines

  1. on mouseUp
  2.   global language
  3.   set name to the name of member the memberNum of sprite the clickOn
  4.   if word 2 of name = "white" then
  5.     set the memberNum of sprite the clickOn to member (word 1 of name && "yellow" && language)
  6.     updateStage()
  7.     exit
  8.   end if
  9.   if word 2 of name = "yellow" then
  10.     set the memberNum of sprite the clickOn to member (word 1 of name && "white" && language)
  11.     updateStage()
  12.   end if
  13. end
  14.